upcasting and downcasting in c#

70

upcasting and downcasting in c# -

class Employee
{
    // some code
}
class Manager : Employee
{
    //some code
}
// casting can be done by the following
if (employee is Manager)
{
    Manager m = (Manager)employee;
}
// or with the as operator like this:
Manager m = (employee as Manager);

Comments

Submit
0 Comments